home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / lsb-release.postinst < prev    next >
Text File  |  2008-09-16  |  299b  |  15 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     configure)
  5.         if [ -e /etc/lsb-release ]; then
  6.             MD5SUM=`md5sum /etc/lsb-release | cut -d" " -f1`
  7.             if [ "$MD5SUM" = "b5bfe10d9b02fb4e4a45337d1c4d88ab" ]; then
  8.                 rm -f /etc/lsb-release
  9.             fi
  10.         fi
  11.         ;;
  12. esac
  13.  
  14.  
  15.